Dear Statalist,
I am trying to plot the regression coefficients. My codes are as follows.
reghdfe rela_parent ib0.meet $s ,absorb(pid year) vce(robust)
est store Meet
reghdfe rela_parent ib0.phone $s ,absorb(pid year) vce(robust)
est store Phone
reghdfe rela_parent ib0.other $s ,absorb(pid year) vce(robust)
est store Other
coefplot (Meet, label("Meet") color("133 135 134") ciopts(color("133 135 134"))) ///
(Phone, label("Phone") color("225 178 36") ciopts(color("225 178 36"))) ///
(Other, label("Other") color("135 187 175") ciopts(color("135 187 175"))), ///
keep(*meet* *phone* *other*) ///
xline(0, lp(dash) lcolor(gs10)) ///
ciopts(recast(rcap)) ///
graphregion(color(white))
I got a figure as follows.

I want to reshape this graph as follows.

How can I do that using the coefplot command?
Thank you for your help.
I am trying to plot the regression coefficients. My codes are as follows.
reghdfe rela_parent ib0.meet $s ,absorb(pid year) vce(robust)
est store Meet
reghdfe rela_parent ib0.phone $s ,absorb(pid year) vce(robust)
est store Phone
reghdfe rela_parent ib0.other $s ,absorb(pid year) vce(robust)
est store Other
coefplot (Meet, label("Meet") color("133 135 134") ciopts(color("133 135 134"))) ///
(Phone, label("Phone") color("225 178 36") ciopts(color("225 178 36"))) ///
(Other, label("Other") color("135 187 175") ciopts(color("135 187 175"))), ///
keep(*meet* *phone* *other*) ///
xline(0, lp(dash) lcolor(gs10)) ///
ciopts(recast(rcap)) ///
graphregion(color(white))
I got a figure as follows.
I want to reshape this graph as follows.
How can I do that using the coefplot command?
Thank you for your help.
Comment